home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1995 May
/
cd Ware (Juegos) Epimundo.iso
/
DOS
/
C
/
ARCADE.ZIP
/
MS.EXE
/
lzh
/
DRIVER.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-06-15
|
302 b
|
23 lines
#include <stdio.h>
#include <conio.h>
main()
{
unsigned buttons=0;
int x=0,y=0;
init_joystick();
clrscr();
for(;;)
{
buttons=poll_buttons();
gotoxy(1,1);
printf("Buttons: %x\n",buttons);
poll_joystick(&x,&y);
printf("Joystick: (%d,%d)",x,y);
}
return(0);
}